home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HPAVC
/
HPAVC CD-ROM.iso
/
PPC1B3AA.ZIP
/
SELCASE.PPS
< prev
next >
Wrap
Text File
|
1996-07-21
|
435b
|
28 lines
;
; This example illustrates the embedding of Select Case
;
Int A, B
A=1
B=2
Select Case A
Case 1
PrintLn "A=1"
Select Case B
Case 1
PrintLn "bug!"
Case 2
PrintLn "B=2"
Case 3
PrintLn "bug!"
End Select
Case 2
PrintLn "bug!"
Case 3
PrintLn "bug!"
End Select